home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / serial / dim-1.000 / dim-1 / dim-1.03 / src / showfile.c < prev    next >
C/C++ Source or Header  |  1993-12-19  |  335b  |  20 lines

  1. #include "dim.h"
  2.  
  3. void showfile ()
  4. {
  5.     FILE
  6.         *inf;
  7.     char
  8.         *cp;
  9.     
  10.     if (! (inf = fopen (DESTGETTY, "r")) )
  11.         error ("can't open \"%s\" for reading\n", DESTGETTY);
  12.         
  13.     printf ("Current file \"%s\":\n", DESTGETTY);
  14.     while ( (cp = fgetline (inf)) )
  15.         printf ("    %s\n", cp);
  16.     fclose (inf);
  17. }
  18.     
  19.     
  20.